summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FTPServer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/FTPServer.cpp b/FTPServer.cpp
index 0e87fba..98f661e 100644
--- a/FTPServer.cpp
+++ b/FTPServer.cpp
@@ -46,10 +46,11 @@ FTPServer::FTPServer(FS &_FSImplementation) : FTPCommon(_FSImplementation)
aTimeout.resetToNeverExpires();
}
-void FTPServer::begin(const String &uname, const String &pword)
+void FTPServer::begin(const String &uname, const String &pword, boolean _bUnixLst)
{
_FTP_USER = uname;
_FTP_PASS = pword;
+ bUnixLst = _bUnixLst;
iniVariables();